home *** CD-ROM | disk | FTP | other *** search
- // Copyright (c) 1993, University of Kansas, All Rights Reserved
- //
- // Class: TClockView
- // Include File: TClockVi.H
- // Purpose: provide a clock view to the desktop
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 12-13-93 created
- // 02-10-94 Split all members into seperate files.
- #include"tclockvi.h"
-
- TClockView::TClockView(TRect& TR_dimensions) : TView(TR_dimensions) {
- // Purpose: Constructor
- // Arguments: TR_dimensions The dimension for the view to occupy.
- // Return Value: none
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 12-13-93 created
-
- // Initialize the time.
- PresTime[0] = PastTime[0] = '\0';
- update();
- }
-